┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/usr/share/pie/src/Platform/TargetPhp/Exception
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: InvalidPhpBinaryPath.php
<?php declare(strict_types=1); namespace Php\Pie\Platform\TargetPhp\Exception; use RuntimeException; use function sprintf; class InvalidPhpBinaryPath extends RuntimeException { public static function fromNonExistentPhpBinary(string $phpBinaryPath): self { return new self(sprintf( 'The php binary at "%s" does not exist', $phpBinaryPath, )); } public static function fromNonExecutablePhpBinary(string $phpBinaryPath): self { return new self(sprintf( 'The php binary at "%s" is not executable', $phpBinaryPath, )); } public static function fromInvalidPhpBinary(string $phpBinaryPath): self { return new self(sprintf( 'The php binary at "%s" does not appear to be a PHP binary', $phpBinaryPath, )); } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 ExtensionIsNotLoaded.php
PHP
566 B
2026-04-14 00:00
EDIT
📄 ExtensionPathProblem.php
PHP
1023 B
2026-04-14 00:00
EDIT
📄 InvalidPhpBinaryPath.php
PHP
864 B
2026-04-14 00:00
EDIT